home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 039a / pdm_106.zip / CAP.PDM next >
Text File  |  1991-06-08  |  4KB  |  101 lines

  1. * CAP.PDM = Clipper Address Program
  2. * - # = headers to identify sections to the parser function
  3. * - if line is blank, or starts with '*'(or, '&&'), skip it
  4. * - use double quotes only ie. "text" ( a ' is simply text )
  5.  
  6. #DIMARR                         && dim# elements: top menu,total vert elements
  7. 6,17                            && ...must count line dividers as elements
  8.  
  9. #HORIZMENU
  10. *┌trigger letter
  11. *│  ┌letter position in text string
  12. *│  │ ┌hotkey
  13. *│  │ │   ┌menu option text
  14. *│  │ │   │
  15. "F",2,289," File "
  16. "V",2,303," View "
  17. "E",2,274," Edit "
  18. "P",2,281," Print "
  19. "C",2,302," Configure "
  20. "H",2,291," Help "
  21.  
  22. #MENUCOL                        && column of 1st top menu option
  23. 1,7,13,19,26,73
  24.  
  25. #VERTMENU
  26. *┌trigger letter
  27. *│  ┌letter position in text string
  28. *│  │  ┌selectable
  29. *│  │  │  ┌menu option text
  30. *│  │  │  │                                               ┌FUNC/PROC Name
  31. *│  │  │  │                                               │
  32. "S",2,.T.," Select a Data File "                         ,"SELECTFIL()"
  33. "C",2,.T.," Create a new Data File "                     ,"CREATEFIL()"
  34. -
  35. "x",3,.T.," Exit CAP Program  F3 "                       ,"EXIT2DOS()"
  36. @
  37. "D",2,.T.," Display the Data File "                      ,"DISPFIL()"
  38. @
  39. "A",2,.T.," Add a new label to the Data File "           ,"ADDREC()"
  40. "C",2,.T.," Change the current label's data "            ,"CHGREC()"
  41. -
  42. "D",2,.T.," Delete the current label from the Data File ","DELREC()"
  43. @
  44. "S",2,.T.," Select a Label Format "                      ,"SELECTFMT()"
  45. "C",2,.T.," Create a new Label Format "                  ,"CREATEFMT()"
  46. -
  47. "P",2,.T.," Print Labels "                               ,"DO PRINTLBL"
  48. @
  49. "D",2,.T.," Display the Current Configuration "          ,"DISPCONFG()"
  50. "P",2,.T.," Printer Selection "                          ,"SELECTPRN()"
  51. "S",2,.T.," Screen Color Options "                       ,"SCRNCONFG()"
  52. @
  53. "D",2,.T.," Display Help Text   F1 "                     ,"DISPHELP()"
  54.  
  55. #HELPTEXT
  56. "Select any available CAP Data File"
  57. "Create a new CAP Data File"
  58. "Exit the CAP program"
  59.  
  60. "View the currently selected Data file"
  61.  
  62. "Add a new label to the Data File "
  63. "Change the currently viewed label data"
  64. "Delete the currently viewed label data"
  65.  
  66. "Select a Label Format"
  67. "Create a new Label Format"
  68. "Print labels"
  69.  
  70. "Display the current configuration selections"
  71. "Select printer options"
  72. "Select Screen Color Options "
  73.  
  74. "Display Help Text "
  75.  
  76. #COLORS                         && PDM color strings for SET COLOR TO
  77. "N/W"                                   && [ 1] hcolor when not selected
  78. "BG+/W"                                 && [ 2] hcolor for unselected trigger
  79. "W+/R"                                  && [ 3] hcolor for selected option
  80. "BG+/R"                                 && [ 4] hcolor for selected trigger
  81. "N/W"                                   && [ 5] vcolor for box
  82. "N/W"                                   && [ 6] vcolor when not selected
  83. "BG+/W"                                 && [ 7] vcolor for unselected trigger
  84. "W+/R"                                  && [ 8] vcolor for selected option
  85. "BG+/R"                                 && [ 9] vcolor for selected trigger
  86. "N+/W"                                  && [10] vcolor for inactive option
  87. "N/W"                                   && [11] vcolor for message row
  88.  
  89. #PDCONFIG                       && PDM configuration [optional]
  90. 1                                  && [1] = expN: box type: 0,1,2
  91. 0                                  && [2] = expN: row for h menu
  92. 2                                  && [3] = expN: row for box top
  93. 24                                 && [4] = expN: message row
  94. 0                                  && [5] = expN: time out
  95. "N/W"                              && [6] = expC: color for init bottom panel
  96. "W+/B"                             && [7] = expC: color for init screen
  97. 176                                && [8] = expN: char for init screen
  98. *                                  && [9] = expC: text for init bottom panel:
  99. " Alt+Letter=Menu  Esc=Cancel  F1=Help  F3=Exit  F10=Menu  PgDn=Next PgUp=Prev"
  100. *<eof>
  101.